home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 515 / rcs5ap1s.lzh / RCSMERGE.C < prev    next >
C/C++ Source or Header  |  1991-01-30  |  8KB  |  263 lines

  1. /*
  2.  *                       rcsmerge operation
  3.  */
  4. /*****************************************************************************
  5.  *                       join 2 revisions with respect to a third
  6.  *****************************************************************************
  7.  */
  8.  
  9. /* Copyright (C) 1982, 1988, 1989 Walter Tichy
  10.    Copyright 1990 by Paul Eggert
  11.    Distributed under license by the Free Software Foundation, Inc.
  12.  
  13. This file is part of RCS.
  14.  
  15. RCS is free software; you can redistribute it and/or modify
  16. it under the terms of the GNU General Public License as published by
  17. the Free Software Foundation; either version 1, or (at your option)
  18. any later version.
  19.  
  20. RCS is distributed in the hope that it will be useful,
  21. but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. GNU General Public License for more details.
  24.  
  25. You should have received a copy of the GNU General Public License
  26. along with RCS; see the file COPYING.  If not, write to
  27. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  28.  
  29. Report problems and direct all questions to:
  30.  
  31.     rcs-bugs@cs.purdue.edu
  32.  
  33. */
  34.  
  35.  
  36.  
  37. /* $Log: rcsmerge.c,v $
  38.  * Revision 5.4  1991/01/30  14:21:32  apratt
  39.  * CI with RCS version 5
  40.  *
  41.  * Revision 5.3  90/11/01  05:03:50  eggert
  42.  * checked in with -k by apratt at 91.01.10.13.15.26.
  43.  * 
  44.  * Revision 5.3  1990/11/01  05:03:50  eggert
  45.  * Remove unneeded setid check.
  46.  *
  47.  * Revision 5.2  1990/09/04  08:02:28  eggert
  48.  * Check for I/O error when reading working file.
  49.  *
  50.  * Revision 5.1  1990/08/29  07:14:04  eggert
  51.  * Add -q.  Pass -L options to merge.
  52.  *
  53.  * Revision 5.0  1990/08/22  08:13:41  eggert
  54.  * Propagate merge's exit status.
  55.  * Remove compile-time limits; use malloc instead.
  56.  * Make lock and temp files faster and safer.  Ansify and Posixate.  Add -V.
  57.  * Don't use access().  Tune.
  58.  *
  59.  * Revision 4.5  89/05/01  15:13:16  narten
  60.  * changed copyright header to reflect current distribution rules
  61.  * 
  62.  * Revision 4.4  88/08/09  19:13:13  eggert
  63.  * Beware merging into a readonly file.
  64.  * Beware merging a revision to itself (no change).
  65.  * Use execv(), not system(); yield exit status like diff(1)'s.
  66.  * 
  67.  * Revision 4.3  87/10/18  10:38:02  narten
  68.  * Updating version numbers. Changes relative to version 1.1 
  69.  * actually relative to 4.1
  70.  * 
  71.  * Revision 1.3  87/09/24  14:00:31  narten
  72.  * Sources now pass through lint (if you ignore printf/sprintf/fprintf 
  73.  * warnings)
  74.  * 
  75.  * Revision 1.2  87/03/27  14:22:36  jenkins
  76.  * Port to suns
  77.  * 
  78.  * Revision 4.1  83/03/28  11:14:57  wft
  79.  * Added handling of default branch.
  80.  * 
  81.  * Revision 3.3  82/12/24  15:29:00  wft
  82.  * Added call to catchsig().
  83.  *
  84.  * Revision 3.2  82/12/10  21:32:02  wft
  85.  * Replaced getdelta() with gettree(); improved error messages.
  86.  *
  87.  * Revision 3.1  82/11/28  19:27:44  wft
  88.  * Initial revision.
  89.  *
  90.  */
  91. #include "rcsbase.h"
  92.  
  93. static exiting void nowork P((void));
  94.  
  95. static const char co[] = CO;
  96.  
  97. mainProg(rcsmergeId, "rcsmerge", "$Id: rcsmerge.c,v 5.4 1991/01/30 14:21:32 apratt Exp $")
  98. {
  99.     static const char cmdusage[] =
  100.         "\nrcsmerge usage: rcsmerge -rrev1 [-rrev2] [-p] [-Vn] file";
  101.     static const char quietarg[] = "-q";
  102.  
  103.     const char *rev1, *rev2; /*revision numbers*/
  104.     const char *temp1file, *temp2file;
  105.     const char *expandarg, *versionarg;
  106.     const char *mergearg[13], **a;
  107.         int tostdout;
  108.     int status, workfd;
  109.     struct buf commarg;
  110.     struct buf numericrev; /* holds expanded revision number */
  111.     struct hshentries *gendeltas; /* deltas to be generated */
  112.         struct hshentry * target;
  113.  
  114.     initid();
  115.         catchints();
  116.  
  117.     bufautobegin(&commarg);
  118.     bufautobegin(&numericrev);
  119.     rev1 = rev2 = nil;
  120.     status = 0; /* Keep lint happy.  */
  121.     tostdout = false;
  122.     expandarg = versionarg = quietarg; /* i.e. a no-op */
  123.  
  124.         while (--argc,++argv, argc>=1 && ((*argv)[0] == '-')) {
  125.                 switch ((*argv)[1]) {
  126.                 case 'p':
  127.                         tostdout=true;
  128.             goto revno;
  129.         case 'q':
  130.             quietflag = true;
  131.                         /* falls into -r */
  132.                 case 'r':
  133.         revno:
  134.                         if ((*argv)[2]!='\0') {
  135.                 if (!rev1)
  136.                     rev1 = *argv + 2;
  137.                 else if (!rev2)
  138.                     rev2 = *argv + 2;
  139.                 else
  140.                                     faterror("too many revision numbers");
  141.                         } /* do nothing for empty -r or -p */
  142.                         break;
  143.         case 'V':
  144.             versionarg = *argv;
  145.             setRCSversion(versionarg);
  146.             break;
  147.  
  148.         case 'k':
  149.             expandarg = *argv;
  150.             if (0 <= str2expmode(expandarg+2))
  151.                 break;
  152.             /* fall into */
  153.                 default:
  154.             faterror("unknown option: %s%s", *argv, cmdusage);
  155.                 };
  156.         } /* end of option processing */
  157.  
  158.     if (argc<1) faterror("no input file%s", cmdusage);
  159.     if (!rev1) faterror("no base revision number given");
  160.  
  161.         /* now handle all filenames */
  162.  
  163.     if (pairfilenames(argc, argv, rcsreadopen, true, false) == 1) {
  164.  
  165.                 if (argc>2 || (argc==2&&argv[1]!=nil))
  166.                         warn("too many arguments");
  167.         diagnose("RCS file: %s\n", RCSfilename);
  168.         if ((workfd = open(workfilename, tostdout?O_RDONLY:O_RDWR)) < 0)
  169.             nowork();
  170.  
  171.                 gettree();  /* reads in the delta tree */
  172.  
  173.                 if (Head==nil) faterror("no revisions present");
  174.  
  175.  
  176.         if (!expandsym(rev1,&numericrev)) goto end;
  177.         if (!(target=genrevs(numericrev.string, (char *)nil, (char *)nil, (char *)nil,&gendeltas))) goto end;
  178.                 rev1=target->num;
  179.         if (!rev2)
  180.             rev2  =  Dbranch ? Dbranch : Head->num;
  181.         if (!expandsym(rev2,&numericrev)) goto end;
  182.         if (!(target=genrevs(numericrev.string, (char *)nil, (char *)nil, (char *)nil,&gendeltas))) goto end;
  183.                 rev2=target->num;
  184.  
  185.         if (strcmp(rev1,rev2) == 0) {
  186.             error("merging revision %s to itself (no change)",
  187.                 rev1
  188.             );
  189.             if (tostdout) {
  190.                 FILE *w;
  191.                 errno = 0;
  192.                 if (!(w = fdopen(workfd,"r")))
  193.                     nowork();
  194.                 fastcopy(w,stdout);
  195.                 ffclose(w);
  196.             }
  197.             goto end;
  198.         }
  199.         if (close(workfd) < 0)
  200.             nowork();
  201.  
  202.         temp1file = maketemp(0);
  203.         temp2file = maketemp(1);
  204.  
  205.         diagnose("retrieving revision %s\n", rev1);
  206.         bufscpy(&commarg, "-p");
  207.         bufscat(&commarg, rev1);
  208.         if (run((char*)nil,temp1file, co,quietarg,commarg.string,expandarg,versionarg,RCSfilename,(char*)nil)){
  209.                         faterror("co failed");
  210.                 }
  211.         diagnose("retrieving revision %s\n",rev2);
  212.         bufscpy(&commarg, "-p");
  213.         bufscat(&commarg, rev2);
  214.         if (run((char*)nil,temp2file, co,quietarg,commarg.string,expandarg,versionarg,RCSfilename,(char*)nil)){
  215.                         faterror("co failed");
  216.                 }
  217.         diagnose("Merging differences between %s and %s into %s%s\n",
  218.                          rev1, rev2, workfilename,
  219.                          tostdout?"; result to stdout":"");
  220.  
  221.         a = mergearg;
  222.         *a++ = nil;
  223.         *a++ = nil;
  224.         *a++ = MERGE;
  225.         if (tostdout)
  226.             *a++ = "-p";
  227.         if (quietflag)
  228.             *a++ = quietarg;
  229.         *a++ = "-L";  *a++ = workfilename;
  230.         *a++ = "-L";  *a++ = rev2;
  231.         *a++ = workfilename;
  232.         *a++ = temp1file;
  233.         *a++ = temp2file;
  234.         *a = nil;
  235.  
  236.         status = runv(mergearg);
  237.         if (!WIFEXITED(status)  ||  1 < WEXITSTATUS(status)) {
  238.                         faterror("merge failed");
  239.                 }
  240.         }
  241.  
  242. end:
  243.     tempunlink();
  244.     exitmain(nerror ? EXIT_TROUBLE : WEXITSTATUS(status));
  245. }
  246.  
  247. #if lint
  248. #    define exiterr rmergeExit
  249. #endif
  250.     exiting void
  251. exiterr()
  252. {
  253.     tempunlink();
  254.     _exit(EXIT_TROUBLE);
  255. }
  256.  
  257.  
  258.     static exiting void
  259. nowork()
  260. {
  261.     efaterror(workfilename);
  262. }
  263.